home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 008 / thedraw.arc / THEDRAW.DOC < prev   
Encoding:
Text File  |  1986-05-11  |  19.3 KB  |  1,409 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.                               TheDraw Version 1.01
  25.                          Color Screen Image Text Editor
  26.  
  27.  
  28.  
  29.                                COPYRIGHT (C) 1986
  30.                   TheSoft Programming Services and Ian E. Davis
  31.  
  32.              All rights are reserved by TheSoft Programming Services
  33.  
  34.  
  35.  
  36.                     Written in Turbo Pascal on a Tandy 1000.
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.         TheDraw  was  written  as an improvement to  AnsiDraw  by  Amrich 
  72.         Enterprises.   Both  programs  provide  similar  operation,  with 
  73.         TheDraw  giving  a much enhanced user  interface.   In  addition, 
  74.         TheDraw  does not utilize hardware blanking as AnsiDraw does (you 
  75.         can  verify this by pressing CTRL-C before ANSIDRAW displays  its 
  76.         opening screen, and then doing a Dos directory).  There have been 
  77.         reports  that  hardware  blanking on a system  using  a  Hercules 
  78.         compatible  graphics interface can cause physical  damage.   This 
  79.         makes TheDraw safe for such computer setups.
  80.  
  81.         TheDraw  is designed to create,  store,  and retrieve screens  of 
  82.         either ASCII text or ANSI compatible color images.   As examples, 
  83.         these images can be used in batch files or with the RBBS Bulletin 
  84.         Board System.
  85.  
  86.         For any given application,  if one screen of text is insufficient 
  87.         (the  program  can  only handle one 80x23  image)  then  multiple 
  88.         screens can be linked together with the DOS copy append  function 
  89.         (ie: COPY FILE1.EXT+FILE2.EXT FILE3.EXT).
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.         TheDraw                                                 Page 2
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.                           C U R S O R   C O N T R O L:
  138.  
  139.  
  140.               The cursor can be moved by using the following keys:
  141.  
  142.                  Up Arrow    : Up one line.
  143.                  Down Arrow  : Down one line.
  144.                  Left Arrow  : Left one position.
  145.                  Right Arrow : Right one position.
  146.                  Home        : First column of current line.
  147.                  End         : Last column of current line.
  148.                  Page Up     : First line in current column.
  149.                  Page Down   : Last line in current column.
  150.                  Ctrl-Home   : Upper-left position of screen.
  151.                  Ctrl-End    : Lower-right position of screen.
  152.                  Tab         : Next set Tab position (see Alt-T).
  153.                  Enter       : First column of following line.
  154.  
  155.         Naturally, if you are at a border no action will be taken.  If no 
  156.         tab  position follows the current location,  pressing [TAB]  will 
  157.         return you to column one of the current line.
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.         TheDraw                                                 Page 3
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.                                 C O M M A N D S:
  204.  
  205.         TheDraw  provides the following 16 command  functions,  available 
  206.         through ALT-Letter key sequences:
  207.  
  208.                       Alt-A     Change Text Color Attributes
  209.                       Alt-C     Clear Current Screen
  210.                       Alt-D     Set Default Clear Screen Color
  211.                       Alt-F     View Function Key Sets
  212.                       Alt-H     Display Help Information
  213.                       Alt-K     Delete a File 
  214.                       Alt-L     Load Screen from Disk
  215.                       Alt-M     Block Action Commands
  216.                       Alt-N     Insert a Line.
  217.                       Alt-O     Change Drive/Sub Directory
  218.                       Alt-Q     Exit TheDraw
  219.                       Alt-R     Restore Current Line
  220.                       Alt-S     Save Screen to Disk
  221.                       Alt-T     Tab Setup
  222.                       Alt-V     View a Screen (not load).
  223.                       Alt-Y     Delete Current Line.
  224.  
  225.  
  226.         On the following pages are explanations of each of the above.
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.         TheDraw                                                 Page 4
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.                        Alt-A: Change Text Color Attributes
  270.  
  271.  
  272.         This  function  allows  you  to change the colors  text  will  be    
  273.         displayed  with.  The  current settings are  represented  in  the 
  274.         status  line  with  the word "Color".   You can select  from  the 
  275.         following foreground colors:
  276.  
  277.                     0  Black                  8  Dark Gray
  278.                     1  Blue                   9  Light Blue
  279.                     2  Green                 10  Light Green
  280.                     3  Cyan                  11  Light Cyan
  281.                     4  Red                   12  Light Red
  282.                     5  Magenta               13  Light Magenta
  283.                     6  Brown                 14  Yellow
  284.                     7  Light Gray            15  White
  285.  
  286.         Characters  can  be made to blink by selecting  colors  from  the 
  287.         range 16 through 31. These match the above listed colors exactly, 
  288.         except they blink.
  289.  
  290.         Background  colors  can be any of the first eight (0  through  7) 
  291.         colors  listed.   There  are no background colors available  that 
  292.         allow blinking.
  293.  
  294.         A  current  setting for either foreground or  background  can  be 
  295.         maintained  by simply pressing <ENTER> at the appropriate  prompt 
  296.         without any number entry.
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.         TheDraw                                                 Page 5
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.                            Alt-C: Clear Current Screen
  336.  
  337.  
  338.         This  should be a fairly obvious option.   You are first prompted 
  339.         to verify the command.   If changes have been made to the current 
  340.         image,  you are then asked if you want to save the current image.  
  341.         After that, the screen is cleared with the color specified in the 
  342.         following option.
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.         TheDraw                                                 Page 6
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.                        Alt-D: Set Default Background Color
  402.  
  403.  
  404.         The  default  background is used to 'paint' the entire  screen  a 
  405.         given color upon invoking the above command.
  406.  
  407.         The  same restrictions of colors apply here as to the  background 
  408.         colors available in Alt-A.
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415.  
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422.  
  423.  
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.         TheDraw                                                 Page 7
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467.                           Alt-F: View Function Key Sets
  468.  
  469.  
  470.         This  displays  on the screen all 10 sets  of  available  special 
  471.         characters.  These  character sets can be selected in the  editor 
  472.         mode  by  using  either  the CTRL or SHIFT  key  and  pressing  a 
  473.         function key 1 to 10. ie:
  474.  
  475.                             CTRL-F1   Selects set #1.
  476.                            SHIFT-F10  Selects set #10.
  477.  
  478.         The Ctrl and Shift keys are seen as the same by TheDraw.
  479.  
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505.  
  506.  
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519.  
  520.  
  521.  
  522.  
  523.         TheDraw                                                 Page 8
  524.  
  525.  
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532.                          Alt-H: Display Help Information
  533.  
  534.  
  535.            This displays a short help screen of these command options.
  536.  
  537.  
  538.  
  539.  
  540.  
  541.  
  542.  
  543.  
  544.  
  545.  
  546.  
  547.  
  548.  
  549.  
  550.  
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.         TheDraw                                                 Page 9
  590.  
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599.                               Alt-K: Delete a File
  600.  
  601.  
  602.         This  option  allows you to free up some disk space if  the  need 
  603.         arises.   It  displays  the directory so you can  identify  those 
  604.         files  which  you  don't  want  easily.     Simply  type  in  the 
  605.         appropriate  filename and press <enter>.   TheDraw then checks to 
  606.         see if the file exists.   If it does, you are asked if you really 
  607.         want  to delete the file.   This is your last chance  before  you 
  608.         delete something you might regret later.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655.         TheDraw                                                 Page 10
  656.  
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663.  
  664.  
  665.                           Alt-L: Load Screen from Disk
  666.  
  667.  
  668.         This  allows you to load any ANSI color compatible or ASCII  text 
  669.         file.  The  ANSI.SYS  driver  must be installed to load  a  color 
  670.         image.   This can done by adding a 'DEVICE=ANSI.SYS' statement to 
  671.         your CONFIG.SYS file.  If you do not have a CONFIG.SYS file,  you 
  672.         can create one by typing the following:
  673.  
  674.                            COPY CON CONFIG.SYS<enter>
  675.                            DEVICE=ANSI.SYS<enter>
  676.                            ^Z<enter>
  677.  
  678.         If you have a CONFIG.SYS file, append the sequence with:
  679.  
  680.                            EDLIN CONFIG.SYS<enter>
  681.                            #I<enter>
  682.                            DEVICE=ANSI.SYS<enter>
  683.                            ^Z<enter>
  684.                            E<enter>
  685.  
  686.  
  687.         If the current screen image has not been saved,  you are prompted 
  688.         before  the load continues.   The current directory is  displayed 
  689.         for  convenience.  Simply  type in the appropriate  filename  and 
  690.         press  [ENTER].   The file extension ".ANS" is assumed if none is 
  691.         specified.   You  may  specify  a file without  an  extension  by 
  692.         placing  a  period  as the last character of  the  filename  (ie: 
  693.         TESTFILE. ).
  694.  
  695.         If the file contains more than 23 lines of text,  only the  first 
  696.         23 are loaded.
  697.  
  698.  
  699.  
  700.  
  701.  
  702.  
  703.  
  704.  
  705.  
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.         TheDraw                                                 Page 11
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.  
  730.  
  731.                           Alt-M: Block Action Commands
  732.  
  733.  
  734.         The  block  action commands are one of the more useful  utilities 
  735.         TheDraw  offers.   It  allows  you  to change  a  block  (from  1 
  736.         character to the entire screen) to the current color  attributes, 
  737.         copy or move a block to another position,  erase a block,  save a 
  738.         block  as a mini-image,  or load/merge part of another image into 
  739.         the current one.
  740.  
  741.         To  use  any  of the above commands,  first  the  block  must  be 
  742.         defined.  This is done immediately after typing Alt-M.  Go to the 
  743.         upper-left  corner of  the wanted block and press  [HOME].   Then 
  744.         move  to  the lower-right corner  and press [END].   The  current 
  745.         block will have all attributes reversed to  make it obvious.   If 
  746.         you  move  above or left of the upper-left  block   corner  (once 
  747.         defined), no block will be shown inverted.
  748.  
  749.         Upon  pressing  [END]  you will be presented with  the  available 
  750.         options:
  751.             
  752.            [A]ttributes  will  paint  the defined block  with  current 
  753.            color   attributes.
  754.  
  755.            [C]opy  allows  you  to copy the defined block  to  another  
  756.            position.  Use  the  arrow keys to move  the  block.  Press 
  757.            [ENTER] once satisfied with the new position.
  758.  
  759.            [M]ove  operates identically to [C]opy except the  original 
  760.            position is erased (see following option).
  761.  
  762.            [E]rase  does  what  is implied.   All  characters  in  the 
  763.            defined   block  are  changed  to  spaces  and  the   color 
  764.            attributes are set to a black background with the currently 
  765.            defined foreground color.
  766.  
  767.            [S]ave  operates  identically to the  save  screen  command 
  768.            except only the defined block is output (see Alt-S).
  769.  
  770.            [L]oad  allows you to import data from another image (saved 
  771.            on disk). The current image is stored, and you are prompted 
  772.            for  the import filename (this operates just  like  Alt-L).  
  773.            The  new  image  is loaded onto the screen and  a  inverted 
  774.            block of the size defined appears in the upper-left  corner 
  775.            of the screen.  Move this block (using the arrows) over the 
  776.            wanted part of the screen and press [ENTER].   That portion 
  777.            will  then  appear in the defined position in the  original 
  778.            image.
  779.  
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.         TheDraw                                                 Page 12
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794.  
  795.  
  796.  
  797.                               Alt-N: Insert a Line
  798.  
  799.  
  800.         Inserts  a  line at the current position.   The current line  and 
  801.         everything  below it is shifted down.   The bottom line is  lost.  
  802.         This command is not reversible, so use it carefully.
  803.  
  804.  
  805.  
  806.  
  807.  
  808.  
  809.  
  810.  
  811.  
  812.  
  813.  
  814.  
  815.  
  816.  
  817.  
  818.  
  819.  
  820.  
  821.  
  822.  
  823.  
  824.  
  825.  
  826.  
  827.  
  828.  
  829.  
  830.  
  831.  
  832.  
  833.  
  834.  
  835.  
  836.  
  837.  
  838.  
  839.  
  840.  
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847.  
  848.  
  849.  
  850.  
  851.  
  852.  
  853.         TheDraw                                                 Page 13
  854.  
  855.  
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863.                         Alt-O: Change Drive/Sub Directory
  864.                                       
  865.  
  866.         The command requires the use of DOS 2.0 or higher to operate, and 
  867.         should  be appealing to those hard drive users out  there.   This 
  868.         option allows you to change to a different directory if your need 
  869.         requires  it.   This is the only way you can change the directory 
  870.         displayed in the Load or View Screen commands.   All sub-dirs  in 
  871.         the  current directory are displayed for you,  but you are in  no 
  872.         way  restricted  to using just those.   You may enter  any  valid 
  873.         CHDIR  (or CD) command (I am not going to explain the details  of 
  874.         sub-directories.  Refer to your Dos manual for that).
  875.  
  876.         This  command  unlike the CHDIR of Dos allows you to  change  the 
  877.         current drive.  For example, if you were on drive C: in a sub-dir 
  878.         called 'GAMES', you could switch to drive D: sub-dir 'UTILITY' by 
  879.         entering  "D:\UTILITY".   You  could  get  back  to  the  'GAMES' 
  880.         directory by simply entering "C:" (no backslash).
  881.  
  882.  
  883.  
  884.  
  885.  
  886.  
  887.  
  888.  
  889.  
  890.  
  891.  
  892.  
  893.  
  894.  
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919.         TheDraw                                                 Page 14
  920.  
  921.  
  922.  
  923.  
  924.  
  925.  
  926.  
  927.  
  928.  
  929.                                Alt-Q: Exit TheDraw
  930.  
  931.  
  932.         This  should  be  obvious.   You are prompted  to  verify  before 
  933.         leaving the program.
  934.  
  935.  
  936.  
  937.  
  938.  
  939.  
  940.  
  941.  
  942.  
  943.  
  944.  
  945.  
  946.  
  947.  
  948.  
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955.  
  956.  
  957.  
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964.  
  965.  
  966.  
  967.  
  968.  
  969.  
  970.  
  971.  
  972.  
  973.  
  974.  
  975.  
  976.  
  977.  
  978.  
  979.  
  980.  
  981.  
  982.  
  983.  
  984.  
  985.         TheDraw                                                 Page 15
  986.  
  987.  
  988.  
  989.  
  990.  
  991.  
  992.  
  993.  
  994.  
  995.                            Alt-R: Restore Current Line
  996.  
  997.  
  998.         This  allows you to erase any changes made to the  current  line.  
  999.         If  you type something and realize it was in the wrong  position, 
  1000.         pressing  Alt-R  will restore the line to its original  contents.  
  1001.         All changes are permanent once you move to another line however.
  1002.  
  1003.  
  1004.  
  1005.  
  1006.  
  1007.  
  1008.  
  1009.  
  1010.  
  1011.  
  1012.  
  1013.  
  1014.  
  1015.  
  1016.  
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022.  
  1023.  
  1024.  
  1025.  
  1026.  
  1027.  
  1028.  
  1029.  
  1030.  
  1031.  
  1032.  
  1033.  
  1034.  
  1035.  
  1036.  
  1037.  
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043.  
  1044.  
  1045.  
  1046.  
  1047.  
  1048.  
  1049.  
  1050.  
  1051.         TheDraw                                                 Page 16
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.  
  1058.  
  1059.  
  1060.  
  1061.                            Alt-S: Save Screen to Disk
  1062.  
  1063.  
  1064.         This  command  will save the entire screen to disk in  either  an 
  1065.         ASCII or ANSI compatible color image.  Please note that all color 
  1066.         attributes are lost in an ASCII file.
  1067.  
  1068.         You  are  first prompted if you want the save as  an  ANSI  file.  
  1069.         Answer Yes or No.   If no,  you are prompted if you really want a 
  1070.         non-color image made.   If yes, you are then asked if you wish to 
  1071.         have the screen cleared initially.   If no,  then you are finally 
  1072.         asked  if  you  want the cursor  homed  (returned  to  upper-left 
  1073.         position of the screen).
  1074.  
  1075.         Following the above you are prompted for a filename.  If the file 
  1076.         already   exists,  you  are  prompted to verify  the  save.   The 
  1077.         program  assumes the file extensions ".ANS" for  ANSI  compatible 
  1078.         files,  and  ".ASC"  for  ASCII text files.   A file  without  an 
  1079.         extension  can  be  specified by placing a  period  as  the  last 
  1080.         character of the filename (ie: TESTFILE. ).
  1081.  
  1082.         The  screen is then output to disk (assuming a valid filename was 
  1083.         entered).
  1084.  
  1085.  
  1086.  
  1087.  
  1088.  
  1089.  
  1090.  
  1091.  
  1092.  
  1093.  
  1094.  
  1095.  
  1096.  
  1097.  
  1098.  
  1099.  
  1100.  
  1101.  
  1102.  
  1103.  
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109.  
  1110.  
  1111.  
  1112.  
  1113.  
  1114.  
  1115.  
  1116.  
  1117.         TheDraw                                                 Page 17
  1118.  
  1119.  
  1120.  
  1121.  
  1122.  
  1123.  
  1124.  
  1125.  
  1126.  
  1127.                                 Alt-T: Tab Setup
  1128.  
  1129.  
  1130.         This command allows you to specify at what positions you want the 
  1131.         [TAB] key to stop at.  Initially the positions are at every tenth 
  1132.         column.   You  can  [S]et additional  ones,  [C]lear  a  setting, 
  1133.         [R]eset  the  tab line to the initial settings,  [E]rase all  tab 
  1134.         settings,  or  set  tab points at every  [I]ncremented  position.  
  1135.         With  the incremented option,  you are prompted for a step  size.  
  1136.         From  the  current position,  every nth location  is  set.   This 
  1137.         allows you to quickly specify,  say every fourth position if your 
  1138.         need requires it.  Press [ESC] to exit this mode.
  1139.  
  1140.  
  1141.  
  1142.  
  1143.  
  1144.  
  1145.  
  1146.  
  1147.  
  1148.  
  1149.  
  1150.  
  1151.  
  1152.  
  1153.  
  1154.  
  1155.  
  1156.  
  1157.  
  1158.  
  1159.  
  1160.  
  1161.  
  1162.  
  1163.  
  1164.  
  1165.  
  1166.  
  1167.  
  1168.  
  1169.  
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175.  
  1176.  
  1177.  
  1178.  
  1179.  
  1180.  
  1181.  
  1182.  
  1183.         TheDraw                                                 Page 18
  1184.  
  1185.  
  1186.  
  1187.  
  1188.  
  1189.  
  1190.  
  1191.  
  1192.  
  1193.                               Alt-V: View a Screen
  1194.  
  1195.  
  1196.         This  command  allows  you to look at  another  image  from  disk 
  1197.         without  erasing  the  current  one.    You  might  use  this  in 
  1198.         conjunction  with  the data import function in the  block  action 
  1199.         commands.  It  works  similar to the load screen command  (Alt-L)     
  1200.         except the image is not stored.
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.  
  1207.  
  1208.  
  1209.  
  1210.  
  1211.  
  1212.  
  1213.  
  1214.  
  1215.  
  1216.  
  1217.  
  1218.  
  1219.  
  1220.  
  1221.  
  1222.  
  1223.  
  1224.  
  1225.  
  1226.  
  1227.  
  1228.  
  1229.  
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235.  
  1236.  
  1237.  
  1238.  
  1239.  
  1240.  
  1241.  
  1242.  
  1243.  
  1244.  
  1245.  
  1246.  
  1247.  
  1248.  
  1249.         TheDraw                                                 Page 19
  1250.  
  1251.  
  1252.  
  1253.  
  1254.  
  1255.  
  1256.  
  1257.  
  1258.  
  1259.                            Alt-Y: Delete Current Line
  1260.  
  1261.  
  1262.         Should be an obvious command.   Everything below the current line 
  1263.         is  shifted  up one position.   The bottom line is left  cleared.  
  1264.         This command is not reversible, so use it carefully.
  1265.  
  1266.  
  1267.  
  1268.  
  1269.  
  1270.  
  1271.  
  1272.  
  1273.  
  1274.  
  1275.  
  1276.  
  1277.  
  1278.  
  1279.  
  1280.  
  1281.  
  1282.  
  1283.  
  1284.  
  1285.  
  1286.  
  1287.  
  1288.  
  1289.  
  1290.  
  1291.  
  1292.  
  1293.  
  1294.  
  1295.  
  1296.  
  1297.  
  1298.  
  1299.  
  1300.  
  1301.  
  1302.  
  1303.  
  1304.  
  1305.  
  1306.  
  1307.  
  1308.  
  1309.  
  1310.  
  1311.  
  1312.  
  1313.  
  1314.  
  1315.         TheDraw                                                 Page 20
  1316.  
  1317.  
  1318.  
  1319.  
  1320.  
  1321.  
  1322.  
  1323.  
  1324.  
  1325.         Please consider the donation of $5.00.   Quality software at good 
  1326.         prices  is  difficult  to  find  these  days.    We  at   TheSoft 
  1327.         Programming Services firmly believe in and support the concept of 
  1328.         freeware  products,  and hopefully you do also.   If you have any 
  1329.         comments or suggestions for TheDraw, please send them to:
  1330.  
  1331.  
  1332.  
  1333.                           TheSoft Programming Services
  1334.                           c/o Ian Davis
  1335.                           1929 Whitecliff Court
  1336.                           Walnut Creek, Ca, 94596.
  1337.  
  1338.  
  1339.  
  1340.         Thanks for your support!
  1341.  
  1342.  
  1343.  
  1344.  
  1345.  
  1346.  
  1347.  
  1348.  
  1349.  
  1350.  
  1351.  
  1352.  
  1353.  
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359.  
  1360.  
  1361.  
  1362.  
  1363.  
  1364.  
  1365.  
  1366.  
  1367.  
  1368.  
  1369.  
  1370.  
  1371.  
  1372.  
  1373.  
  1374.  
  1375.  
  1376.  
  1377.  
  1378.  
  1379.  
  1380.  
  1381.         TheDraw                                                 Page 21
  1382.  
  1383.  
  1384.  
  1385.  
  1386.  
  1387.  
  1388. 
  1389.  
  1390.  
  1391.  
  1392.  
  1393.  
  1394.  
  1395.  
  1396.  
  1397.  
  1398.  
  1399.  
  1400.  
  1401.  
  1402.  
  1403.  
  1404.  
  1405.  
  1406.  
  1407.  
  1408.  
  1409.         TheDraw